home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _9CF977784F234F87B0AEF48E45EB6F18 < prev    next >
Encoding:
Text File  |  2006-08-04  |  693 b   |  27 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_PageCurl():
  13.     return {
  14.         'BackgroundColor': (128,128,128), 
  15.         'CurlColor': (255,255,255), 
  16.         'Corner': 3, 
  17.         'Width': 40, 
  18.         'Height': 60, 
  19.         'Radius': 50, 
  20.         'EdgeMode': App.Constants.EdgeMode.Background
  21.         }
  22.  
  23. def Do(Environment):
  24.     # Page Curl
  25.     App.Do( Environment, 'PageCurl',         Preset_PageCurl())
  26.  
  27.